Compare commits
No commits in common. "main" and "v1.0" have entirely different histories.
2 changed files with 2 additions and 2 deletions
2
main.pyw
2
main.pyw
|
@ -32,7 +32,7 @@ window = GameWindow(
|
|||
)
|
||||
|
||||
# Change l'icône de cette fenêtre
|
||||
try: window.set_icon(pyglet.image.load(path_image / "icon/icon.png"))
|
||||
try: window.set_icon(pyglet.image.load(path_image / "/icon/icon.png"))
|
||||
except: pass # NOQA E722
|
||||
|
||||
window.set_minimum_size(720, 480)
|
||||
|
|
2
setup.py
2
setup.py
|
@ -19,7 +19,7 @@ setup(
|
|||
executables=[
|
||||
Executable(
|
||||
"main.pyw",
|
||||
icon=path_image / "icon/icon.ico",
|
||||
icon=path_image / "/icon/icon.ico",
|
||||
base="win32gui",
|
||||
target_name="Bataille Navale.exe",
|
||||
shortcut_name="Bataille Navale",
|
||||
|
|
Loading…
Reference in a new issue