Skip to content

Commit

Permalink
Rebranding
Browse files Browse the repository at this point in the history
  • Loading branch information
bit69tream committed Dec 27, 2023
1 parent 147b2a5 commit da525c5
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
PROJECT_NAME: ${{ github.event.repository.name }}
PROJECT_BUILD_PATH: ${{ github.event.repository.name }}/src
PROJECT_RELEASE_PATH: ${{ github.event.repository.name }}_dev_linux_x64
PROJECT_SOURCES: "sinister.c"
PROJECT_SOURCES: "stribun.c"
PROJECT_CUSTOM_FLAGS: ""

steps:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/webassembly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
PROJECT_NAME: ${{ github.event.repository.name }}
PROJECT_BUILD_PATH: ${{ github.event.repository.name }}\\src
PROJECT_RELEASE_PATH: ${{ github.event.repository.name }}_dev_wasm
PROJECT_SOURCES: sinister.c
PROJECT_SOURCES: stribun.c
BUILD_WEB_SHELL: minshell.html

steps:
Expand Down
4 changes: 2 additions & 2 deletions projects/VS2022/raylib_game/raylib_game.vcxproj
Original file line number Diff line number Diff line change
Expand Up @@ -351,10 +351,10 @@
</ProjectReference>
</ItemGroup>
<ItemGroup>
<ClCompile Include="..\..\..\src\sinister.c" />
<ClCompile Include="..\..\..\src\stribun.c" />
</ItemGroup>
<ItemGroup>
<ResourceCompile Include="..\..\..\src\sinister.rc" />
<ResourceCompile Include="..\..\..\src\stribun.rc" />
</ItemGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
<ImportGroup Label="ExtensionTargets">
Expand Down
4 changes: 2 additions & 2 deletions src/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
PLATFORM ?= PLATFORM_DESKTOP

# Define project variables
PROJECT_NAME ?= sinister
PROJECT_NAME ?= stribun
PROJECT_VERSION ?= 1.0
PROJECT_BUILD_PATH ?= .

Expand Down Expand Up @@ -298,7 +298,7 @@ endif

# Define source code files required
#------------------------------------------------------------------------------------------------
PROJECT_SOURCE_FILES ?= sinister.c
PROJECT_SOURCE_FILES ?= stribun.c

# Define all object files from source files
OBJS = $(patsubst %.c, %.o, $(PROJECT_SOURCE_FILES))
Expand Down
2 changes: 1 addition & 1 deletion src/sinister.c → src/stribun.c
Original file line number Diff line number Diff line change
Expand Up @@ -599,7 +599,7 @@ int main(void) {
#if !defined(_DEBUG)
SetTraceLogLevel(LOG_NONE);
#endif
InitWindow(screenWidth, screenHeight, "sinister");
InitWindow(screenWidth, screenHeight, "stribun");

#if defined(PLATFORM_DESKTOP)
SetExitKey(KEY_NULL);
Expand Down

0 comments on commit da525c5

Please sign in to comment.