mirror of
https://github.com/isledecomp/isle-portable.git
synced 2025-09-24 04:26:55 -04:00
Add fake mosaic to config tool (#522)
This commit is contained in:
parent
0d2cbd50d5
commit
af045eefed
@ -455,6 +455,11 @@
|
||||
<string>Unknown - Broken</string>
|
||||
</property>
|
||||
</item>
|
||||
<item>
|
||||
<property name="text">
|
||||
<string>Fake Mosaic</string>
|
||||
</property>
|
||||
</item>
|
||||
</widget>
|
||||
</item>
|
||||
<item>
|
||||
|
@ -18,5 +18,5 @@ void N3DS_SetupDefaultConfigOverrides(dictionary* p_dictionary)
|
||||
iniparser_set(p_dictionary, "isle:savepath", "sdmc:/3ds/isle");
|
||||
|
||||
// Use e_noAnimation/cut transition
|
||||
iniparser_set(p_dictionary, "isle:Transition Type", "1");
|
||||
iniparser_set(p_dictionary, "isle:Transition Type", "7");
|
||||
}
|
||||
|
@ -637,7 +637,7 @@ int GetColorIndexWithLocality(int p_col, int p_row)
|
||||
int scrambled = (hash >> 16) % 32;
|
||||
|
||||
int finalIndex = scrambled + SDL_rand(3) - 1;
|
||||
return finalIndex % 32;
|
||||
return abs(finalIndex) % 32;
|
||||
}
|
||||
|
||||
void MxTransitionManager::FakeMosaicTransition()
|
||||
|
Loading…
x
Reference in New Issue
Block a user