More update for internal loop handling.

This commit is contained in:
soukoku
2014-04-14 19:51:36 -04:00
parent d8512f7706
commit 3ae070e3a3
5 changed files with 44 additions and 36 deletions

View File

@@ -19,7 +19,7 @@ namespace Tester
{
// just an amusing example to do twain in console without UI
DoTwainWork();
Console.WriteLine("Test completed, press Enter to exit.");
Console.WriteLine("Test started, press Enter to exit.");
Console.ReadLine();
}

View File

@@ -345,7 +345,7 @@ namespace Tester.Winform
{
if (!_loadingCaps && _twain.State == 4)
{
var sel = (int)comboDPI.SelectedItem;
var sel = (TWFix32)comboDPI.SelectedItem;
_twain.CapSetDPI(sel);
}
}