From 4935ded1fcd8239b04ce587e81b6ef6517fb6fa5 Mon Sep 17 00:00:00 2001 From: Dominic Masters Date: Mon, 1 Nov 2021 14:41:56 -0700 Subject: [PATCH] Fixed double dash --- .github/workflows/test.yml | 2 +- CMakeLists.txt | 6 ++++++ src/game/poker/pokergameassets.c | 6 +++--- 3 files changed, 10 insertions(+), 4 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 5b6ad3cb..ed9e7113 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -23,7 +23,7 @@ jobs: - name: Build run: | - cmake -B build --DTARGET_TYPE=test + cmake -B build -DTARGET_TYPE=test cmake --build ./build - name: Test diff --git a/CMakeLists.txt b/CMakeLists.txt index de3ed783..bceeefca 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -53,6 +53,11 @@ elseif(TARGET_TYPE STREQUAL game) shared/fonts/opensans/OpenSans-Bold.ttf fonts/opensans/OpenSans-Bold.ttf ) + # Textures + tool_copy(texture_test + shared/textures/test_texture.png textures/test_texture.png + ) + # Poker Game if(TARGET_GAME STREQUAL poker) add_compile_definitions( @@ -82,6 +87,7 @@ elseif(TARGET_TYPE STREQUAL game) tool_assets( shader_textured font_opensans + texture_test vn_penny vn_lucy vn_julie diff --git a/src/game/poker/pokergameassets.c b/src/game/poker/pokergameassets.c index 1cd97323..5859827f 100644 --- a/src/game/poker/pokergameassets.c +++ b/src/game/poker/pokergameassets.c @@ -9,17 +9,17 @@ bool pokerGameAssetsInit(pokergameassets_t *assets) { // Load the game's shader assetShaderLoad(&assets->shader, - "shared/shaders/textured.vert", "shared/shaders/textured.frag" + "shaders/textured.vert", "shaders/textured.frag" ); // Load the game's font - assetFontLoad(&assets->font, "shared/fonts/opensans/OpenSans-Bold.ttf"); + assetFontLoad(&assets->font, "fonts/opensans/OpenSans-Bold.ttf"); // Initialize the language buffer. languageInit(&assets->language, "locale/language/en-US.csv"); // Load the world textures. - assetTextureLoad(&assets->testTexture, "shared/test_texture.png"); + assetTextureLoad(&assets->testTexture, "textures/test_texture.png"); assetTextureLoad(&assets->cardTexture, "poker/cards_normal.png"); assetTextureLoad(&assets->roomTexture, "poker/world/pub/pub_skywall.png");