mirror of
https://gitlab.com/manzerbredes/ochess.git
synced 2025-04-06 10:06:29 +02:00
Debug embedded PNG
This commit is contained in:
parent
15cc58bf5b
commit
7e85875978
1 changed files with 8 additions and 8 deletions
|
@ -8,21 +8,21 @@ wxBitmap LoadPNG(std::string icon, wxSize size) {
|
||||||
|
|
||||||
wxBitmap LoadPNG(std::string icon) {
|
wxBitmap LoadPNG(std::string icon) {
|
||||||
if (icon == "swap") {
|
if (icon == "swap") {
|
||||||
return (wxBITMAP_PNG(swap));
|
return (wxBITMAP_PNG_FROM_DATA(swap));
|
||||||
} else if (icon == "zoomin") {
|
} else if (icon == "zoomin") {
|
||||||
return (wxBITMAP_PNG(zoomin));
|
return (wxBITMAP_PNG_FROM_DATA(zoomin));
|
||||||
} else if (icon == "zoomout") {
|
} else if (icon == "zoomout") {
|
||||||
return (wxBITMAP_PNG(zoomout));
|
return (wxBITMAP_PNG_FROM_DATA(zoomout));
|
||||||
} else if (icon == "cburnett") {
|
} else if (icon == "cburnett") {
|
||||||
return (wxBITMAP_PNG(cburnett));
|
return (wxBITMAP_PNG_FROM_DATA(cburnett));
|
||||||
} else if (icon == "chesscom_8bits") {
|
} else if (icon == "chesscom_8bits") {
|
||||||
return (wxBITMAP_PNG(chesscom_8bits));
|
return (wxBITMAP_PNG_FROM_DATA(chesscom_8bits));
|
||||||
} else if (icon == "hide") {
|
} else if (icon == "hide") {
|
||||||
return (wxBITMAP_PNG(hide));
|
return (wxBITMAP_PNG_FROM_DATA(hide));
|
||||||
} else if (icon == "mat") {
|
} else if (icon == "mat") {
|
||||||
return (wxBITMAP_PNG(mat));
|
return (wxBITMAP_PNG_FROM_DATA(mat));
|
||||||
} else if (icon == "ochess") {
|
} else if (icon == "ochess") {
|
||||||
return (wxBITMAP_PNG(ochess));
|
return (wxBITMAP_PNG_FROM_DATA(ochess));
|
||||||
}
|
}
|
||||||
return (wxNullBitmap);
|
return (wxNullBitmap);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue