Daltonism

Romcenter 4 support discussion. Please do not post roms requests or illegal links, posts will be deleted. After discussion in this forum, please report any new bugs here.

Moderator: Wanderer

Forum rules
No roms requests or illegal links
Bzalel
Pong
Pong
Posts: 1
Joined: Fri May 31, 2013 9:47 pm

Daltonism

Post by Bzalel »

Sorry for my English. Automatic translate by google.

Please change the color of the icons of the roms
combination to avoid: red / green
Thank you.

MELERIX
Street fighter II
Street fighter II
Posts: 53
Joined: Fri Feb 24, 2012 5:57 am
Location: Chile
Contact:

Re: Daltonism

Post by MELERIX »

reasons ?

Back

Re: Daltonism

Post by Back »

Melerix, look up the term Daltonism. Not sure though if Bzalel is trolling or serious.

ainsley
Pong
Pong
Posts: 2
Joined: Thu Jan 02, 2014 11:55 am

Re: Daltonism

Post by ainsley »

wouldn't when adding rom files, especially when you add your rom directory for the first time, to precache several roms in an array and then insert an huge amount of roms at once, instead to do one sql insert per game?
Become a successful web designer with brain dump training course. Learn all the basics of web designing using 70-680 braindumps tutorials and ARM study guides.

User avatar
RomCenter
Author
Author
Posts: 1519
Joined: Fri Sep 28, 2001 12:34 pm
Location: France
Contact:

Re: Daltonism

Post by RomCenter »

And how do you insert a 'huge amount of roms at once' ?
There is no sql command to batch import.

I already do an uncommited load to speed up things.
Eric - RomCenter developer
Report bugs here.

MELERIX
Street fighter II
Street fighter II
Posts: 53
Joined: Fri Feb 24, 2012 5:57 am
Location: Chile
Contact:

Re: Daltonism

Post by MELERIX »

RomCenter wrote:And how do you insert a 'huge amount of roms at once' ?
There is no sql command to batch import.

I already do an uncommited load to speed up things.
well, here is an example for MySQL...

fast insert

Code: Select all

INSERT INTO `table1` VALUES
(a, b, c, d),
(e, f, g, h),
(w, x, y, z);
slow insert

Code: Select all

INSERT INTO `table1` VALUES (a, b, c, d);
INSERT INTO `table1` VALUES (e, f, g, h);
INSERT INTO `table1` VALUES (w, x, y, z);

Post Reply