diff --git a/CMakeLists.txt b/CMakeLists.txt index 85a64552..6a7a35d7 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -26,7 +26,7 @@ set(SETTING_GAME_NAME "DawnGame") set(SETTING_TARGET_WIN32 1) set(SETTING_TARGET_RG351 2) -set(SETTING_TARGET SETTING_TARGET_WIN32) +set(SETTING_TARGET SETTING_TARGET_RG351) # Win32 if(${SETTING_TARGET} EQUAL ${SETTING_TARGET_WIN32}) @@ -129,7 +129,10 @@ target_link_libraries(${PROJECT_NAME} cglm) # OpenGL find_package(OpenGL REQUIRED) -target_link_libraries(${PROJECT_NAME} OpenGL::GL) +target_link_libraries(${PROJECT_NAME} OpenGL::OpenGL) + +message(WARNING ${OpenGL_OpenGL_FOUND}) + # CMake target_link_libraries(${PROJECT_NAME} ${CMAKE_DL_LIBS}) \ No newline at end of file diff --git a/include/dawn/file/asset.h b/include/dawn/file/asset.h index c5a9f48e..4524abec 100644 --- a/include/dawn/file/asset.h +++ b/include/dawn/file/asset.h @@ -7,7 +7,7 @@ #include "../libs.h" /** Prefix of all asset load methods, may be customizable in future. */ -#define ASSET_PREFIX "../assets/" +#define ASSET_PREFIX "assets/" /** Definition of an asset ready to be buffered */ typedef FILE assetbuffer_t; \ No newline at end of file diff --git a/src/file/asset.c b/src/file/asset.c index 822417dd..caf44cc2 100644 --- a/src/file/asset.c +++ b/src/file/asset.c @@ -45,6 +45,8 @@ assetbuffer_t * assetBufferOpen(char *assetName) { strcat(joined, ASSET_PREFIX);//Add prefix strcat(joined, assetName);//Add body + printf("Opening up %s\n", joined); + // Open the file pointer now. FILE *fptr = fopen(joined, "rb"); free(joined);// Free the string we just created diff --git a/src/game/poker/pokergameassets.c b/src/game/poker/pokergameassets.c index d3a53abd..3ccee4d4 100644 --- a/src/game/poker/pokergameassets.c +++ b/src/game/poker/pokergameassets.c @@ -20,7 +20,7 @@ bool pokerGameAssetsInit(pokergameassets_t *assets) { // Load the world textures. assetTextureLoad(&assets->testTexture, "test_texture.png"); - assetTextureLoad(&assets->roomTexture, "world/pub/pub_skywall.png"); + assetTextureLoad(&assets->roomTexture, "world/pub/pub_skywall_low.png"); // Load the character textures. assetTextureLoad(&assets->pennyTexture, "characters/penny/sprites/sheet.png");