소스 검색

Add an assert on custom frame control support

pull/4444/head
Menno van der Graaf 2 달 전
부모
커밋
8fe61b2a4c
1개의 변경된 파일8개의 추가작업 그리고 0개의 파일을 삭제
  1. +8
    -0
      examples/core/core_custom_frame_control.c

+ 8
- 0
examples/core/core_custom_frame_control.c 파일 보기

@ -27,12 +27,20 @@
********************************************************************************************/
#include "raylib.h"
#include "config.h"
#include "assert.h"
//------------------------------------------------------------------------------------
// Program main entry point
//------------------------------------------------------------------------------------
int main(void)
{
#if !defined(SUPPORT_CUSTOM_FRAME_CONTROL)
// This examaple requires the SUPPORT_CUSTOM_FRAME_CONTROL feature.
// Please edit your raylib config.h and recompile raylib.
assert(false);
#endif
// Initialization
//--------------------------------------------------------------------------------------
const int screenWidth = 800;

불러오는 중...
취소
저장