浏览代码

RPI: Corrected issue when creating 3d projection view

pull/951/head
raysan5 5 年前
父节点
当前提交
ef3b01dffc
共有 1 个文件被更改,包括 3 次插入3 次删除
  1. +3
    -3
      src/core.c

+ 3
- 3
src/core.c 查看文件

@ -2507,9 +2507,6 @@ static bool InitGraphicsDevice(int width, int height)
if (screenHeight <= 0) screenHeight = displayHeight;
#endif // PLATFORM_DESKTOP
currentWidth = screenWidth;
currentHeight = screenHeight;
#if defined(PLATFORM_WEB)
displayWidth = screenWidth;
displayHeight = screenHeight;
@ -3040,6 +3037,9 @@ static bool InitGraphicsDevice(int width, int height)
// Setup default viewport
SetupViewport(fbWidth, fbHeight);
currentWidth = screenWidth;
currentHeight = screenHeight;
ClearBackground(RAYWHITE); // Default background color for raylib games :P
#if defined(PLATFORM_ANDROID)

正在加载...
取消
保存