mirror of https://github.com/stella-emu/stella.git
fix window position saving when changing zoom via hotkey
This commit is contained in:
parent
8d086b9ef9
commit
754cd90f90
|
@ -1621,13 +1621,13 @@
|
||||||
</tr>
|
</tr>
|
||||||
|
|
||||||
<tr>
|
<tr>
|
||||||
<td>Decrease custom palette phase shift (switches to 'Custom' palette)</td>
|
<td>Decrease 'Custom' palette's phase shift</td>
|
||||||
<td>Shift-Control + 9</td>
|
<td>Shift-Control + 9</td>
|
||||||
<td>Shift-Control + 9</td>
|
<td>Shift-Control + 9</td>
|
||||||
</tr>
|
</tr>
|
||||||
|
|
||||||
<tr>
|
<tr>
|
||||||
<td>Increase custom palette phase shift (switches to 'Custom' palette)</td>
|
<td>Increase 'Custom' palette's phase shift</td>
|
||||||
<td>Control + 9</td>
|
<td>Control + 9</td>
|
||||||
<td>Control + 9</td>
|
<td>Control + 9</td>
|
||||||
</tr>
|
</tr>
|
||||||
|
|
|
@ -939,6 +939,8 @@ bool FrameBuffer::changeVidMode(int direction)
|
||||||
else
|
else
|
||||||
return false;
|
return false;
|
||||||
|
|
||||||
|
saveCurrentWindowPosition();
|
||||||
|
|
||||||
// Changing the video mode can take some time, during which the last
|
// Changing the video mode can take some time, during which the last
|
||||||
// sound played may get 'stuck'
|
// sound played may get 'stuck'
|
||||||
// So we mute the sound until the operation completes
|
// So we mute the sound until the operation completes
|
||||||
|
|
Loading…
Reference in New Issue