| 
					Speed Counter
				 | 
| 
					07-28-2013, 03:02 AM 
				  Post: #1 | |||
| 
 | |||
| Speed Counter 
					I saw that in recent builds the speed counter is in percent, but I prefer the old counter, VPS. Would be possible put a option to select percent or VPS? Thanks    Phones: Poco F3 8GB/256GB (Snapdragon 870 5G) and Redmi Note 6 Pro 4/64GB (Snapdragon 636) PC: AMD Ryzen 5 3600 / 16GB RAM DDR4 3600MHz / NVIDIA GTX 1660 Ti 6GB / Windows 10 Pro | |||
| 
					07-28-2013, 03:04 AM 
				  Post: #2 | |||
| 
 | |||
| RE: Speed Counter 4GHz AMD 3900X, 32GB DDR4 RAM, 6GB Nvidia RTX 2060, Asus Crosshair 7 Hero (Wifi), Linux How to ask useful questions: https://web.archive.org/web/20110214010944/http://support.microsoft.com/kb/555375 I'm not Dark_Alex, nor do I claim to be. Our nicknames are merely coincidence. | |||
| 
					07-28-2013, 03:26 AM 
				  Post: #3 | |||
| 
 | |||
| RE: Speed Counter 
					Um, nice, I'm not the only one    Phones: Poco F3 8GB/256GB (Snapdragon 870 5G) and Redmi Note 6 Pro 4/64GB (Snapdragon 636) PC: AMD Ryzen 5 3600 / 16GB RAM DDR4 3600MHz / NVIDIA GTX 1660 Ti 6GB / Windows 10 Pro | |||
| 
					07-28-2013, 07:54 AM 
				  Post: #4 | |||
| 
 | |||
| RE: Speed Counter 
					Usually I don't like bitching, But I have to agree here.
				 Since English is not my first language sorry for some misspelling on my posts | |||
| 
					07-28-2013, 04:49 PM 
				  Post: #5 | |||
| 
 | |||
| RE: Speed Counter 
					I think it will be better in Development. Moving. Phones: Poco F3 8GB/256GB (Snapdragon 870 5G) and Redmi Note 6 Pro 4/64GB (Snapdragon 636) PC: AMD Ryzen 5 3600 / 16GB RAM DDR4 3600MHz / NVIDIA GTX 1660 Ti 6GB / Windows 10 Pro | |||
| 
					07-28-2013, 06:14 PM 
(This post was last modified: 07-28-2013 06:15 PM by solarmystic.)
				  Post: #6 | |||
| 
 | |||
| RE: Speed Counter 
					If you're self compiling PPSSPP (which you should if you're a serious tester and developer), you can revert the changes by opening the project in your favourite C++ compiler program (e.g. Visual Studio C++ 2010/2012) and changing the following two lines located in UI\Screens\EmuScreen.cpp:- Line 527 from Code: sprintf(fpsbuf, "Speed: %0.1f%%", vps / 60.0f * 100.0f); break;to Code: sprintf(fpsbuf, "Speed: %0.1f", vps); break;and Line 531 from Code: sprintf(fpsbuf, "Speed: %0.1f%%\nFPS: %0.1f", vps / 60.0f * 100.0f, fps); break;to Code: sprintf(fpsbuf, "Speed: %5.1f\nFPS: %0.1f", vps, fps); break;PPSSPP Modern Testbed:- Intel Core i5 4690K @ 4.0 GHz NVIDIA Geforce GTX 760 2GB GDDR5 VRAM @ 1138/6500 Mhz 16 GB DDR3 RAM @ 1600 MHz Windows 7 x64 SP1 PPSSPP Ancient Testing Rig:- Intel Core 2 Duo T9550 @ 2.8GHz ATI Mobility Radeon 4670 1GB GDDR3 VRAM @ 843/882 MHz 8 GB DDR3 RAM @ 1066 MHz Windows 7 x64 SP1 | |||
| 
					07-28-2013, 07:58 PM 
				  Post: #7 | |||
| 
 | |||
| RE: Speed Counter 
					Sorry, I'm not developer. But I will be one day    Phones: Poco F3 8GB/256GB (Snapdragon 870 5G) and Redmi Note 6 Pro 4/64GB (Snapdragon 636) PC: AMD Ryzen 5 3600 / 16GB RAM DDR4 3600MHz / NVIDIA GTX 1660 Ti 6GB / Windows 10 Pro | |||
| 
					07-28-2013, 09:02 PM 
				  Post: #8 | |||
| 
 | |||
| RE: Speed Counter (07-28-2013 06:14 PM)solarmystic Wrote: If you're self compiling PPSSPP (which you should if you're a serious tester and developer), you can revert the changes by opening the project in your favourite C++ compiler program (e.g. Visual Studio C++ 2010/2012) and changing the following two lines located in UI\Screens\EmuScreen.cpp:-Personally I would wait until the developers see fit to revert this or implement a toggle of on/off (Show percentage of speed). Because obviously they are updating this emulator on a daily basis, & I do not want to have to correct every version myself, too much hassle to be honest. BUT THANKS FOR THIS INFO anyway. I can't code to save my life, only a bit of Z80 assembly language & that was hard enough to understand. | |||
| 
					07-28-2013, 09:50 PM 
(This post was last modified: 07-28-2013 09:51 PM by GuilhermeGS2.)
				  Post: #9 | |||
| 
 | |||
| RE: Speed Counter (07-28-2013 09:02 PM)The Phoenix Wrote:(07-28-2013 06:14 PM)solarmystic Wrote: If you're self compiling PPSSPP (which you should if you're a serious tester and developer), you can revert the changes by opening the project in your favourite C++ compiler program (e.g. Visual Studio C++ 2010/2012) and changing the following two lines located in UI\Screens\EmuScreen.cpp:-Personally I would wait until the developers see fit to revert this or implement a toggle of on/off (Show percentage of speed). I agree with you. And if I knew C++, with sure, I was helping in this great project: PPSSPP  . Phones: Poco F3 8GB/256GB (Snapdragon 870 5G) and Redmi Note 6 Pro 4/64GB (Snapdragon 636) PC: AMD Ryzen 5 3600 / 16GB RAM DDR4 3600MHz / NVIDIA GTX 1660 Ti 6GB / Windows 10 Pro | |||
| 
					07-28-2013, 10:16 PM 
				  Post: #10 | |||
| 
 | |||
| RE: Speed Counter 4GHz AMD 3900X, 32GB DDR4 RAM, 6GB Nvidia RTX 2060, Asus Crosshair 7 Hero (Wifi), Linux How to ask useful questions: https://web.archive.org/web/20110214010944/http://support.microsoft.com/kb/555375 I'm not Dark_Alex, nor do I claim to be. Our nicknames are merely coincidence. | |||
| 
					07-28-2013, 10:23 PM 
				  Post: #11 | |||
| 
 | |||
| RE: Speed Counter (07-28-2013 10:16 PM)daxtsu Wrote: https://github.com/hrydgard/ppsspp/pull/2969Oh WOW I love your work, keep it up my friend. | |||
| 
					07-28-2013, 10:33 PM 
				  Post: #12 | |||
| 
 | |||
| RE: Speed Counter 
					Thanks, man.
				 Phones: Poco F3 8GB/256GB (Snapdragon 870 5G) and Redmi Note 6 Pro 4/64GB (Snapdragon 636) PC: AMD Ryzen 5 3600 / 16GB RAM DDR4 3600MHz / NVIDIA GTX 1660 Ti 6GB / Windows 10 Pro | |||
| 
					07-28-2013, 11:13 PM 
(This post was last modified: 07-28-2013 11:41 PM by TheDax.)
				  Post: #13 | |||
| 
 | |||
| RE: Speed Counter 4GHz AMD 3900X, 32GB DDR4 RAM, 6GB Nvidia RTX 2060, Asus Crosshair 7 Hero (Wifi), Linux How to ask useful questions: https://web.archive.org/web/20110214010944/http://support.microsoft.com/kb/555375 I'm not Dark_Alex, nor do I claim to be. Our nicknames are merely coincidence. | |||
| 
					07-28-2013, 11:23 PM 
				  Post: #14 | |||
| 
 | |||
| RE: Speed Counter 
					When it will come to buildbot?
				 Phones: Poco F3 8GB/256GB (Snapdragon 870 5G) and Redmi Note 6 Pro 4/64GB (Snapdragon 636) PC: AMD Ryzen 5 3600 / 16GB RAM DDR4 3600MHz / NVIDIA GTX 1660 Ti 6GB / Windows 10 Pro | |||
| 
					07-28-2013, 11:23 PM 
				  Post: #15 | |||
| 
 | |||
| RE: Speed Counter 
					Hopefully today or tomorrow. Depends on if Henrik approves it or not.
				 4GHz AMD 3900X, 32GB DDR4 RAM, 6GB Nvidia RTX 2060, Asus Crosshair 7 Hero (Wifi), Linux How to ask useful questions: https://web.archive.org/web/20110214010944/http://support.microsoft.com/kb/555375 I'm not Dark_Alex, nor do I claim to be. Our nicknames are merely coincidence. | |||
| 
					« Next Oldest | Next Newest »
				 | 

 Search
Search Member List
Member List Calendar
Calendar Help
Help 

 






![[Image: iO0ELXU0DAnuj.png]](https://i.minus.com/iO0ELXU0DAnuj.png)