This commit is contained in:
RocketRobz 2018-10-19 18:57:49 -06:00
parent 013ffe654d
commit e0a3cf3e27
2 changed files with 2 additions and 2 deletions

View File

@ -77,7 +77,7 @@ int main(int argc, char **argv) {
bool yHeld = false;
snprintf(titleName, sizeof(titleName), "GodMode9i v%i.%i.%i", 1, 3, 1);
snprintf(titleName, sizeof(titleName), "GodMode9i v%i.%i.%i", 1, 3, 2);
// initialize video mode
videoSetMode(MODE_4_2D);

View File

@ -98,7 +98,7 @@ void screenshotbmp(const char* filename) {
{
for(int x=0;x<256;x++)
{
u16 color=VRAM_D[256*192-y*256+x];
u16 color=VRAM_D[256*191-y*256+x];
u8 b=(color&31)<<3;
u8 g=((color>>5)&31)<<3;