Skip to content

Commit

Permalink
Fix support for AMD Athlon x2 and ATI Radeon Graphic
Browse files Browse the repository at this point in the history
  • Loading branch information
eloaders committed Jan 4, 2012
1 parent 70aa8a8 commit 3d3a512
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 6 deletions.
Binary file modified src/i-nex/.gambas/GLOBAL
Binary file not shown.
16 changes: 10 additions & 6 deletions src/i-nex/.src/Global.class
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,6 @@ Static Public gravity As Integer

Static Public Sub ikonaprocka()
'Procesory intel
If Finfosys.TextArea1.Text Like "*Intel(R) Atom(TM)*" Then
Finfosys.PictureBox3.Picture = Picture["atom.png"]
Endif

If Finfosys.TextArea1.Text Like "*Intel(R) Core(TM)2 Duo*" Then
Finfosys.PictureBox3.Picture = Picture["intelcore2duo.png"]
Endif
Expand All @@ -17,7 +13,7 @@ Static Public Sub ikonaprocka()
Endif

If Finfosys.TextArea1.Text Like "*Intel(R) Core(TM)2 CPU*" Then
Finfosys.PictureBox3.Picture = Picture["atom.png"]
Finfosys.PictureBox3.Picture = Picture["intelcore2duo.png"]
Endif

If Finfosys.TextArea1.Text Like "*Intel(R) Core(TM)2 Extreme*" Then
Expand Down Expand Up @@ -70,7 +66,11 @@ Static Public Sub ikonaprocka()
Endif

If Finfosys.TextArea1.Text Like "*AMD Athlon(tm) II X2*" Then
Finfosys.PictureBox3.Picture = Picture["730143272452F1.jpg"]
Finfosys.PictureBox3.Picture = Picture["Processors/amd_athlon_x2.png"]
Endif

If Finfosys.TextArea1.Text Like "*Intel(R) Atom(TM)*" Then
Finfosys.PictureBox3.Picture = Picture["atom.png"]
Endif

End
Expand All @@ -81,5 +81,9 @@ Static Public Sub kartagraficzna()
Finfosys.PictureBox1.Picture = Picture["Data/Karta_graficzna/intel.png"]
Endif

If Finfosys.TextArea17.Text Like "*Radeon*" Then
Finfosys.PictureBox1.Picture = Picture["Data/Karta_graficzna/ati.png"]
Endif

End

0 comments on commit 3d3a512

Please sign in to comment.