Skip to content

Commit

Permalink
fix: chardet module in launcher
Browse files Browse the repository at this point in the history
  • Loading branch information
sarahkittyy committed Jan 12, 2023
1 parent 7710557 commit b537021
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/cmake.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
- name: Configure Updater
run: |
echo ${{github.ref_name}} > version.txt
pip install pyinstaller readchar requests
pip install pyinstaller readchar requests chardet
pyinstaller --onefile --console --add-data "version.txt;." --workpath=build/_pytmp --distpath=build --icon="assets/icon.ico" launcher.py
- run: |
Expand Down
2 changes: 1 addition & 1 deletion game/player.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ void player::queue_animation(std::string name) {
}

sf::Vector2i player::size() const {
return sf::Vector2i(64, 64);
return m_inner.size();
}

void player::update() {
Expand Down

0 comments on commit b537021

Please sign in to comment.