Fullscreen works perfectly.
Posted: Fri Sep 04, 2009 8:57 am
Fullscreen works perfectly.
*The* place for Snes9x related topics
https://www.snes9x.com/phpbb3/
Code: Select all
--- a/i386/cpuexec.S 2009-09-04 05:26:00.000000000 -0400
+++ b/i386/cpuexec.S 2009-09-04 05:28:02.000000000 -0400
@@ -709,3 +709,7 @@
andl $~IRQ_PENDING_FLAG, Flags
.irqsstillpending:
ret
+
+#if defined(__linux__) && defined(__ELF__)
+.section .note.GNU-stack,"",%progbits
+#endif
Code: Select all
--- a/i386/SPC.ASM 2009-09-04 07:01:26.000000000 -0400
+++ b/i386/SPC.ASM 2009-09-04 07:03:21.000000000 -0400
@@ -513,3 +513,7 @@
mov edx, 32767
CLIP16SMP2SKIP1:
ret
+
+%ifidn __OUTPUT_FORMAT__,elf
+section .note.GNU-stack noalloc noexec nowrite progbits
+%endif
Code: Select all
patch -p1 < snes9x-gtk-1.51.75-no-exec-stack.patch
This would be an issue with kwin not handling XRandR events properly. It assumes the desktop is resizing when the video mode changes and resizes all existing windows regardless. You can bug the kwin developers to fix it, or just not use mode-changing like Tukuyomi suggests. If you're using OpenGL or XV then you won't see a speed loss by using the desktop resolution.zombie_ryushu wrote:I have a non-critical fullscreen bug.
Basically, it seems the way snes9x-gtk fullscreens, it resizes the desktop/KDE in the process. So if you have open windows when you launch full screen, it moves them, or it resizes them.
I'm not actually sure which is more preferred: having modifiers keys apply combos to normal keys (e.g. Shift+F1), or having them act as independent keys on their own. I suppose I could provide an option to switch between behaviors.DaVince wrote:Hi, new at these forums (thanks to this thread!)
I think your work on this GTK version is totally awesome. It's got tons of features and works amazingly! But I have stumbled upon something really inconvenient...
When I try to configure the keyboard settings, it won't accept control keys like shift, ctrl and alt. These keys are used in my favourite (keyboard) control scheme, so I can only set up snes9x-gtk to use Z, X, in other words, for me less convenient keys. I tried editing the configuration XML manually but it uses long numbers instead of key labels. Could you fix the input please?