mirror of
https://github.com/hrydgard/ppsspp.git
synced 2025-04-02 11:01:50 -04:00
Fix a switch missing value warning.
This commit is contained in:
parent
fd546ff21d
commit
360be4073d
1 changed files with 2 additions and 2 deletions
|
@ -64,11 +64,11 @@ bool GPU_Init(GraphicsContext *ctx, Thin3DContext *thin3d) {
|
|||
break;
|
||||
case GPUCORE_DIRECTX11:
|
||||
return false;
|
||||
#ifndef NO_VULKAN
|
||||
case GPUCORE_VULKAN:
|
||||
#ifndef NO_VULKAN
|
||||
SetGPU(new GPU_Vulkan(ctx));
|
||||
break;
|
||||
#endif
|
||||
break;
|
||||
}
|
||||
|
||||
return gpu != NULL;
|
||||
|
|
Loading…
Add table
Reference in a new issue