Skip to content

Commit

Permalink
Fix division by zero
Browse files Browse the repository at this point in the history
  • Loading branch information
RSDuck committed May 13, 2024
1 parent 043244a commit 347f4a7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/frontend/qt_sdl/EmuThread.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -497,7 +497,7 @@ void EmuThread::run()
if (NDS->GPU.GetRenderer3D().NeedsShaderCompile())
{
compileShaders();
nlines = 0;
nlines = 1;
}
else
{
Expand Down

0 comments on commit 347f4a7

Please sign in to comment.