Linux Port: Fix missing semicolon.

This was lost in 0869afded6315fb14d2265e8b3872b36ccc3fdce's refactoring.
This commit is contained in:
Adam Sampson 2017-10-25 14:40:28 +01:00
parent 0869afded6
commit d74ab529a7
1 changed files with 1 additions and 1 deletions

View File

@ -2313,7 +2313,7 @@ static void GraphicsSettingsDialog() {
#endif
if (GPU->Change3DRendererByID(sel3DCore)) {
config.core3D = sel3DCore
config.core3D = sel3DCore;
} else {
GPU->Change3DRendererByID(RENDERID_SOFTRASTERIZER);
g_printerr("3D renderer initialization failed!\nFalling back to 3D core: %s\n", core3DList[RENDERID_SOFTRASTERIZER]->name);