We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7ade23f commit a50bba0Copy full SHA for a50bba0
1 file changed
arm9/source/main.cpp
@@ -870,9 +870,6 @@ int playRvid(const char* filename) {
870
}
871
872
873
- if (rvidOver256Colors && !isDSiMode()) {
874
- frameBufferCount /= 2;
875
- }
876
if (rvidDualScreen) {
877
frameBufferCount /= 2;
878
@@ -908,8 +905,7 @@ int playRvid(const char* filename) {
908
905
videoHourMark, videoMinuteMark, videoSecondMark);
909
906
910
907
if (rvidOver256Colors) {
911
- const int amount = isDSiMode() ? 32 : 16;
912
- frameBuffer = new u8[0x18000*amount];
+ frameBuffer = new u8[0x18000*32];
913
if (rvidOver256Colors == 2) {
914
savedFrameBuffer[0] = new u8[0x18000];
915
0 commit comments