Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - howlerbr

Pages: [1]
1
General / Re: add_ticks_callback cpu fan noise on windows
« on: February 14, 2020, 05:01:35 PM »
I'm using a notebook with AMD Radeon, how do I set V-Sync? Is it in the radeon settings utility?

2
General / add_ticks_callback cpu fan noise on windows
« on: February 13, 2020, 06:40:45 PM »
hi, in my theme I was looking for a code to put a clock on it. I found this solution in other themes:

Code: [Select]

  local dt = fe.add_text( "", x*0.915, y*0.003, w*0.3, h*0.05 );
  dt.align = Align.Left;
  dt.charsize = x*0.02;
  dt.alpha = 230;

  dt.font = "Geforce Light";
 
  function update_clock( ttime ){
  local now = date();
  dt.msg = format("%02d", now.hour) + ":" + format("%02d", now.min );
}
//  fe.add_ticks_callback( this, "update_clock" );
}

But for some reason in windows after 30 seconds aproximately I noticed the cpu fan noise too loud. Trying to find the problem in my theme I commented out the line that updates the clock and now no noise... but also no clock.

Is there anything wrong with the code above or in the implementation of add_ticks_callback function in Windows?

Also the same noise problem when running videos (already converted them to use lower bit rate)

thanks!

3
General / fan always turning on when playing videos
« on: October 13, 2019, 06:22:08 PM »
not sure why in my notebook whenever I start attract mode for every game that has a video the computer always increase the cpu and the fan is turned on. This happens only with videos snaps, if they are images nothing happens.

I guess this is probably something related to my setup, but I'm not sure what should I change in order to play the videos without increasing cpu and turning on the fan

4
Themes / Is there a tool to convert retrofe themes to attractmode?
« on: November 09, 2018, 06:40:13 PM »
I really like Ergo Proxy theme from http://retrofe.nl/SMF/index.php?topic=14.msg207#msg207

Is there any tool that I can use to convert that theme in an attract mode theme?

Or if anyone is able to code that would be great!

5
Themes / Re: Hyperspin joystick anamation
« on: August 15, 2017, 06:14:30 PM »
that's way too cool, I liked it. Where do I find the documentation for other animation options for sprites? In squirrel-lang site? I couldn't find anything

6
Scripting / Re: overview text (not History.dat)
« on: July 24, 2017, 11:49:01 AM »
I did it for the games, but is this overview text available for the main menu systems? If so, how do I configure it? thanks

7
Scripting / Re: overview text (not History.dat)
« on: July 24, 2017, 10:47:02 AM »
Sorry but I could not make it work. Where do I put the folder and the txt files for the games? What is the name of the folder? Is the system name? Could you please give an example? Thanks a lot.

8
General / default system?
« on: September 19, 2016, 09:22:13 PM »
Is there a way to set a defualt system when starting attractmode?

9
General / how can I use a custom retroarch config file?
« on: September 19, 2016, 09:15:24 PM »
I have a collection of Banpresto roms, how can I use a custom retroarch config file for setting an specific overlay for banpresto. It always get mame-libretro\retroarch.cfg and I want banpresto\retroarch.cfg. thanks

10
General / can I have one marquee for all games
« on: June 12, 2016, 04:54:30 PM »
Probably a noob question, but can I have one marquee for all games of a system, like genesis for example? I want to display only Sega Genesis in the nevato theme. Do I need to have the same image for every rom I have in my list or is there a default one I can use? thanks a lot!

Pages: [1]