Skip to content

Commit

Permalink
fixed static linkage oopsie
Browse files Browse the repository at this point in the history
  • Loading branch information
oddbookworm committed Jan 10, 2024
1 parent 3d2f18e commit 3c1a964
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/render_window.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ static std::string title = "Kraken";
static bool fullscreen = false;


static RenderWindow& RenderWindow::getInstance()
RenderWindow& RenderWindow::getInstance()
{
static RenderWindow __instance;
instanceCreated = true;
Expand Down Expand Up @@ -196,7 +196,7 @@ void RenderWindow::setFullscreen(bool fullscreenValue)
}
}

static bool RenderWindow::setScale(int newScale)
bool RenderWindow::setScale(int newScale)
{
if (instanceCreated)
{
Expand Down

0 comments on commit 3c1a964

Please sign in to comment.