mirror of
https://github.com/bsnes-emu/bsnes.git
synced 2025-08-14 12:25:00 +02:00
Update to v094r24 release.
byuu says: Finally!! Compilation works once again on Windows. However, it's pretty buggy. Modality isn't really working right, you can still poke at other windows, but when you select ListView items, they redraw as empty boxes (need to process WM_DRAWITEM before checking modality.) The program crashes when you close it (probably a ruby driver's term() function, that's what it usually is.) The Layout::setEnabled(false) call isn't working right, so you get that annoying chiming sound and cursor movement when mapping keyboard keys to game inputs. The column sizing seems off a bit on first display for the Hotkeys tab. And probably lots more.
This commit is contained in:
@@ -14,12 +14,14 @@ struct pWindow : pObject {
|
||||
GtkAllocation lastAllocation = {0};
|
||||
bool onSizePending = false;
|
||||
|
||||
auto append(shared_pointer<mMenuBar> menuBar) -> void;
|
||||
auto append(shared_pointer<mStatusBar> statusBar) -> void;
|
||||
auto append(sLayout layout) -> void;
|
||||
auto append(sMenuBar menuBar) -> void;
|
||||
auto append(sStatusBar statusBar) -> void;
|
||||
auto focused() const -> bool override;
|
||||
auto frameMargin() const -> Geometry;
|
||||
auto remove(shared_pointer<mMenuBar> menuBar) -> void;
|
||||
auto remove(shared_pointer<mStatusBar> statusBar) -> void;
|
||||
auto remove(sLayout layout) -> void;
|
||||
auto remove(sMenuBar menuBar) -> void;
|
||||
auto remove(sStatusBar statusBar) -> void;
|
||||
auto setBackgroundColor(Color color) -> void;
|
||||
auto setDroppable(bool droppable) -> void;
|
||||
auto setEnabled(bool enabled) -> void override;
|
||||
|
Reference in New Issue
Block a user