[pygame] Refresh rate code (Windows)

2014-04-12 Thread j...@yahoo.com
I know how to get the screen's refresh rate in Windows using pywin32 (win32all).

import win32api
d = win32api.EnumDisplaySettings(None, -1)
print (d.DisplayFrequency)

How would I call the same function using ctypes? 

Thanks,
Jason

Sent from Yahoo Mail on Android



Re: [pygame] preview of new pygame website... HiFi part

2014-04-05 Thread j...@yahoo.com
Maybe now is the time to use Aikiman's new logo from last October.

Jason

Sent from Yahoo Mail on Android



Re: [pygame] Website updates - 26 March 2014

2014-03-30 Thread j...@yahoo.com
I have added the news that you found.

Jason



Re: [pygame] Python3 version packaged?

2014-03-28 Thread j...@yahoo.com
Thanks, Chris, for submitting an update for pygame.midi!

> SDL has, to my knowledge, never included any MIDI interfacing. MIDI 

> support was a PyGame addition.

Actually, within SDL_mixer, there is an obsolete version of TiMidity. 
Configuring its external dependencies is a pain though.

Example: http://james.hamsterrepublic.com/linux/

Reference: http://www.libsdl.org/projects/SDL_mixer/

Don't use it if you value your sanity.

Jason