Skip to content

Commit

Permalink
Fix replace (R)
Browse files Browse the repository at this point in the history
  • Loading branch information
eloaders committed Aug 12, 2014
1 parent 5d9d67b commit 94bfc20
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions I-Nex/i-nex/.src/FCpudb.module
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ Function _inits()
'Fix for APU with Radeon(TM) R7 Graphics
cpucache = Replace(cpucache, "R7", "*")
'
cpucache = Replace(Replace(Replace(Replace(Replace(Replace(Replace(cpucache, "Intel", "*"), " ", "*"), "R", "*"), "CPU", "*"), "TM", "*"), ")", "*"), "(", "*")
cpucache = Replace(Replace(Replace(Replace(Replace(Replace(Replace(cpucache, "Intel", "*"), " ", "*"), "(R)", "*"), "CPU", "*"), "TM", "*"), ")", "*"), "(", "*")
cpucache = Replace(Replace(Replace(Replace(cpucache, "AMD", "*"), "Dual-Core", "*"), "Processor", "*"), "tm", "*")
cpucache = Replace(cpucache, "HD", "*")

Expand All @@ -103,7 +103,7 @@ Function _inits()
Endif

cpucache = Replace(cpucache, "Core2", "Core 2")
If cpucache Like "*Processo*" Then
If cpucache Like "*Processor*" Or "*Processo*" Then
cpucache = Replace(cpucache, "Processo", "*")
Endif
If cpucache Like "*Graphic*" Then
Expand Down

0 comments on commit 94bfc20

Please sign in to comment.